CSS 元规则

区块注释

在可行时,用注释将样式表区块组合在一起,用新行分隔各区块。

推荐:

  1. /* Header */
  2. .header {
  3. }
  4. .header-nav {
  5. }
  6. /* Content */
  7. .gallery {
  8. }
  9. .gallery-img {
  10. }
  11. /* Footer */
  12. .footer {
  13. }
  14. .footer-nav {
  15. }